home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / FireMan.swf / scripts / frame_2405 / PlaceObject2_333_3 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2008-09-12  |  435b  |  32 lines

  1. onClipEvent(enterFrame){
  2.    if(begin)
  3.    {
  4.       wait = true;
  5.       begin = false;
  6.       c = 0;
  7.    }
  8.    if(wait)
  9.    {
  10.       c++;
  11.       if(c > DELAY)
  12.       {
  13.          wait = false;
  14.          hide = true;
  15.       }
  16.    }
  17.    if(hide)
  18.    {
  19.       play();
  20.    }
  21.    if(_root.reveal)
  22.    {
  23.       this.gotoAndStop("reveal");
  24.       _root.reveal = false;
  25.       reveal = true;
  26.    }
  27.    if(reveal)
  28.    {
  29.       play();
  30.    }
  31. }
  32.